home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / unclcarl / glabel17 / label1_7.txt < prev    next >
Text File  |  1995-04-25  |  4KB  |  127 lines

  1.                               Uncle Carl's Famous
  2.                                 Generic Labeler
  3.  
  4.                             (C)1992,93 Carl J. Hafner
  5.  
  6.                                  April 13, 1993
  7.  
  8.                              Incredibly FREEWARE !!!
  9.  
  10.   DISTRIBUTION:
  11.   -------------
  12.   You are FREE to copy and distribute this program as long as the files...
  13.  
  14.   LABEL1_7.PRG \ LABEL1_7.TXT \ LABELER.CUR \ OTHERTTL.TXT \ NEWTERMS.TXT
  15.  
  16.   are included, are NOT modified in ANY way and NO FEE of ANY type is
  17.   incurred upon the recipient for the files _themselves_.
  18.  
  19.   This program is Freeware, NOT Public Domain. This means that it remains
  20.   the property of the author, even though there is no fee to use it.
  21.  
  22.  
  23.   DISCLAIMER:
  24.   -----------
  25.   The author cannot be responsible for any damage to your equipment,
  26.   other hardware or software products, or physical or mental well being
  27.   caused by the use, misuse, abuse or inability to use this program.
  28.  
  29.   The author also makes no guarantee as to the compatibility of this
  30.   program with other software or hardware products. Using this program
  31.   means that you understand AND agree with these terms. If you do not
  32.   understand AND agree, DO NOT use this program.
  33.  
  34.  
  35.   PROGRAM/ACCESSORY
  36.   -----------------
  37. * GEN^LABEL works as either a program OR an accessory, depending on how
  38.   you name it and where you put it.
  39.  
  40.  
  41.   RESOLUTIONS
  42.   -----------
  43. * GEN^LABEL _will not_ work in ST or TT LOW resolution, the display is
  44.   too wide. It will work in any other resolution. 
  45.  
  46.  
  47.   ENTERING TEXT/QUITTING
  48.   ----------------------
  49. * You can move from line to line using the cursor arrow keys. When you are
  50.   ready to print, click on PRINT. When you want to quit, click on the box
  51.   in the upper left hand corner.
  52.  
  53.  
  54.   PRINTING/SAVING TO .LST FILE
  55.   ----------------------------
  56. * If you select the PRINT option, an alert will appear. You can either
  57.   send the output to a connected printer OR to a GFA .LST file.
  58.  
  59.   The .LST file converts the text into CHR$ values. For example, the letter
  60.   A  will be saved as...
  61.  
  62.   reg1$=CHR$(65) .
  63.  
  64.   Carl  would be saved as...
  65.  
  66.   reg1$=CHR$(67)+CHR$(97)+CHR$(114)+CHR$(109) .
  67.  
  68.   This can be useful if you wish to include text in your compiled program
  69.   which you do not want viewed from a sector editor, ie: your name or a
  70.   registered users name.
  71.  
  72.   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  73.   REMEMBER: GFA has a set line length so you WON'T be able to save a FULL
  74.             line of text into a .LST file and have it load.
  75.   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  76.  
  77.  
  78.   MOVING THE PANEL
  79.   ----------------
  80. * GEN^LABEL is moved in the same way you move a GEM window. Clicking
  81.   once on the "parent" box centers the panel. If run as a resident
  82.   DA, clicking on the parent box will set GEN^LABEL to its last
  83.   "exit" position.
  84.  
  85.  
  86.   CUSTOM MOUSE CURSORS
  87.   --------------------
  88. * If a file named LABELER.CUR is found in the SAME directory as
  89.   LABEL1_7.PRG(ACC), GenLabel will load a User Defined mouse CURsor !
  90.  
  91.   Users can create their OWN custom mice using UncleMouse 1.0a or newer
  92.   (available most everywhere) !
  93.  
  94.  
  95. * THAT'S IT !
  96.  
  97.  
  98.   PRINTER PORTS
  99.   -------------
  100.   GEN^LABEL checks the PRINTER PORT for a printer. When you select PRINT,
  101.   it sends the command LPRINT text$ to your printer (text$ being ANY text
  102.   on any of the lines).
  103.  
  104.   If you are using a SERIAL printer you will need to use the "port
  105.   redirection" program that came on your printer disk to redirect output
  106.   to the serial port. I'll bet you knew that already...
  107.  
  108.   You should also have no problem setting up your printers internal fonts,
  109.   and printing, since GEN^LABEL merely sends a "print" command and
  110.   nothing else. Enjoy !
  111.  
  112.  
  113.   CREDITS
  114.   -------
  115.   Thanks to Larry D. Duke for TT compatibility
  116.   UncleMouse & the UncleMouse CURsor file (C)Carl J. Hafner
  117.   FormDoIt! (C)Gribnif Software
  118.  
  119.  
  120.   VERSION HISTORY
  121.   ---------------
  122.    1.7         -> Adds .LST file. Fixes rare bug which caused panel to jump
  123.                   to the top of the screen.
  124.    1.6         -> FormDoIt! compatibility, User Mouse support
  125.    1.5         -> TT compatibility
  126.    1.0         -> Original version
  127.